From: Eli Zaretskii Date: Wed, 2 Feb 2011 16:28:24 +0000 (+0200) Subject: Make "etags --version" on Windows produce the same as on Posix platforms. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~4965 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=8ded74c7a476510f6486203da219d6f99d5e9bc0;p=emacs.git Make "etags --version" on Windows produce the same as on Posix platforms. makefile.w32-in (ETAGS_CFLAGS, CTAGS_CFLAGS): Add ``-DEMACS_NAME="\"GNU Emacs\""''. --- diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index e51b9aa58d0..3b4a8398d46 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog @@ -1,3 +1,8 @@ +2011-02-02 Eli Zaretskii + + * makefile.w32-in (ETAGS_CFLAGS, CTAGS_CFLAGS): Add + ``-DEMACS_NAME="\"GNU Emacs\""''. + 2011-01-31 Eli Zaretskii * makefile.w32-in (VERSION): Don't define, defined on nt/config.nt. diff --git a/lib-src/makefile.w32-in b/lib-src/makefile.w32-in index 50a29a86042..962d4a72a6d 100644 --- a/lib-src/makefile.w32-in +++ b/lib-src/makefile.w32-in @@ -98,7 +98,7 @@ $(BLD)/regex.$(O): ../src/regex.c ../src/regex.h ../src/config.h $(CC) $(CFLAGS) -DCONFIG_BROKETS -DINHIBIT_STRING_HEADER \ ../src/regex.c $(CC_OUT)$@ -ETAGS_CFLAGS = -DHAVE_GETCWD +ETAGS_CFLAGS = -DHAVE_GETCWD -DEMACS_NAME="\"GNU Emacs\"" $(BLD)/etags.$(O): etags.c $(CC) $(CFLAGS) $(ETAGS_CFLAGS) $(CC_OUT)$@ etags.c @@ -114,7 +114,7 @@ ctags.c: etags.c - $(DEL) ctags.c $(CP) etags.c ctags.c -CTAGS_CFLAGS = -DCTAGS $(ETAGS_CFLAGS) +CTAGS_CFLAGS = -DCTAGS $(ETAGS_CFLAGS) -DEMACS_NAME="\"GNU Emacs\"" $(BLD)/ctags.$(O): ctags.c $(CC) $(CFLAGS) $(CTAGS_CFLAGS) $(CC_OUT)$@ ctags.c